home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software Explosion
/
Software Explosion (Fore-Matt Home Computing)(1996).iso
/
games
/
windows
/
hangman
/
genericd.cpp
next >
Wrap
C/C++ Source or Header
|
1995-12-31
|
1KB
|
50 lines
// GenericDlg.cpp : implementation file
//
#include "stdafx.h"
#include "Hangman32.h"
#include "GenericDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CGenericDlg dialog
CGenericDlg::CGenericDlg(CWnd* pParent /*=NULL*/)
: CDialog(CGenericDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CGenericDlg)
m_Quote = _T("");
//}}AFX_DATA_INIT
}
void CGenericDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CGenericDlg)
DDX_Text(pDX, IDC_GENERIC_QUOTE, m_Quote);
DDV_MaxChars(pDX, m_Quote, 87);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CGenericDlg, CDialog)
//{{AFX_MSG_MAP(CGenericDlg)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CGenericDlg message handlers
void CGenericDlg::SetQuote(CString strQuote)
{
m_Quote = strQuote;
}